home *** CD-ROM | disk | FTP | other *** search
/ Univers Interactif 3 / INTERACTIF.BIN / pc / planeten / internet / macslip2.6up / MacSLIP Folder / Disconnect.samples < prev    next >
Text File  |  1995-01-11  |  395b  |  24 lines

  1. #
  2. #    This disconnect example would be used if
  3. #    your modem drops into command mode when
  4. #    DTR is dropped. You should not be using
  5. #    DTR flow control.
  6. #
  7. label disconnect
  8. dtr off
  9. delay 5
  10. send ath\r
  11. dtr on
  12. return 1
  13.  
  14.  
  15. #
  16. #     This disconnect example would be used if
  17. #     your modem responds to "+++" to drop
  18. #     into command mode.
  19. #
  20. label disconnect
  21. send "\d\d+++\d\dATH\r"
  22. return 1
  23.  
  24.